home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / nan_news / toolkit / acctyear.prg < prev    next >
Text File  |  1991-08-15  |  3KB  |  101 lines

  1. /*
  2.  * File......: ACCTYEAR.PRG
  3.  * Author....: Jo W. French dba Practical Computing
  4.  * CIS ID....: 74731,1751
  5.  * Date......: $Date:   15 Aug 1991 23:02:40  $
  6.  * Revision..: $Revision:   1.2  $
  7.  * Log file..: $Logfile:   E:/nanfor/src/acctyear.prv  $
  8.  * 
  9.  * The functions contained herein are the original work of Jo W. French
  10.  * and are placed in the public domain.
  11.  *
  12.  * Modification history:
  13.  * ---------------------
  14.  *
  15.  * $Log:   E:/nanfor/src/acctyear.prv  $
  16.  * 
  17.  *    Rev 1.2   15 Aug 1991 23:02:40   GLENN
  18.  * Forest Belt proofread/edited/cleaned up doc
  19.  * 
  20.  *    Rev 1.1   14 Jun 1991 19:50:48   GLENN
  21.  * Minor edit to file header
  22.  * 
  23.  *    Rev 1.0   01 Apr 1991 01:00:28   GLENN
  24.  * Nanforum Toolkit
  25.  *
  26.  */
  27.  
  28. /*  $DOC$
  29.  *  $FUNCNAME$
  30.  *     FT_ACCTYEAR()
  31.  *  $CATEGORY$
  32.  *     Date/Time
  33.  *  $ONELINER$
  34.  *     Return accounting year data
  35.  *  $SYNTAX$
  36.  *     FT_ACCTYEAR( [ <dGivenDate> ] ) -> aDateInfo
  37.  *  $ARGUMENTS$
  38.  *     <dGivenDate> is any valid date in any date format.  Defaults
  39.  *     to current system date if not supplied.
  40.  *  $RETURNS$
  41.  *     A three element array containing the following data:
  42.  *
  43.  *        aDateInfo[1] - The year as a character string "YYYY"
  44.  *        aDateInfo[2] - The beginning date of the accounting year
  45.  *        aDateInfo[3] - The ending date of the accounting year
  46.  *  $DESCRIPTION$
  47.  *     FT_ACCTYEAR() creates an array containing data about the
  48.  *     accounting year containing the given date.
  49.  *
  50.  *     An accounting period has the following characteristics:
  51.  *
  52.  *     If the first week of the period contains 4 or more 'work'
  53.  *     days, it is included in the period; otherwise, the first
  54.  *     week was included in the prior period.
  55.  *
  56.  *     If the last week of the period contains 4 or more 'work'
  57.  *     days it is included in the period; otherwise, the last week
  58.  *     is included in the next period.  This results in 13 week
  59.  *     'quarters' and 4 or 5 week 'months'.  Every 5 or 6 years, a
  60.  *     'quarter' will contain 14 weeks and the year will contain 53
  61.  *     weeks.
  62.  *  $EXAMPLES$
  63.  *     // get info about accounting year containing 9/15/90
  64.  *     aDateInfo := FT_ACCTYEAR( CTOD("09/15/90") )
  65.  *     ? aDateInfo[1]   //  1990
  66.  *     ? aDateInfo[2]   //  12/31/89    beginning of year
  67.  *     ? aDateInfo[3]   //  12/29/90    end of year
  68.  *  $SEEALSO$
  69.  *     FT_DATECNFG() FT_ACCTWEEK() FT_ACCTMONTH() FT_ACCTQTR()
  70.  *  $END$
  71. */
  72.  
  73. FUNCTION FT_ACCTYEAR(dGivenDate)
  74.  
  75. LOCAL nYTemp, aRetVal
  76.  
  77. dGivenDate := IIF(VALTYPE(dGivenDate) != 'D', DATE(), dGivenDate)
  78. aRetVal := FT_YEAR(dGivenDate)
  79. nYTemp := VAL(aRetVal[1])
  80. aRetVal[2] := FT_ACCTADJ(aRetVal[2])
  81. aRetVal[3] := FT_ACCTADJ(aRetVal[3], .T. )
  82.  
  83. IF dGivenDate >= aRetVal[2] .AND. dGivenDate <= aRetVal[3]
  84.   * All Ok.
  85. ELSEIF dGivenDate < aRetVal[2]
  86.   aRetVal := FT_YEAR(FT_MADD(dGivenDate, -1))
  87.   nYTemp --
  88.   aRetVal[2] := FT_ACCTADJ(aRetVal[2])
  89.   aRetVal[3] := FT_ACCTADJ(aRetVal[3], .T. )
  90. ELSE
  91.   aRetVal := FT_YEAR(FT_MADD(dGivenDate,1))
  92.   nYTemp ++
  93.   aRetVal[2] := FT_ACCTADJ(aRetVal[2])
  94.   aRetVal[3] := FT_ACCTADJ(aRetVal[3], .T. )
  95. ENDIF
  96.  
  97. aRetVal[1] := STR(nYTemp,4)
  98.  
  99. RETURN aRetVal
  100.  
  101.